home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / arrayswap.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  447 b   |  22 lines

  1. <!--- This example shows ArraySwap --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>ArraySwap Example</TITLE>
  5. </HEAD>
  6.  
  7. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  8. <BODY  bgcolor="#FFFFD5">
  9.  
  10. <H3>ArraySwap Example</H3>
  11.  
  12. <CFSET month = ArrayNew(1)>
  13. <CFSET month[1] = "February">
  14. <CFSET month[2] = "January">
  15. <CFSET temp = ArraySwap(month, 1, 2)>
  16. <CFSET temp = ArrayToList(month)>
  17.  
  18. <P>Show the results: <CFOUTPUT>#temp#</CFOUTPUT>
  19.  
  20. </BODY>
  21. </HTML>       
  22.